home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / mempools.lha / mempools / Makefile < prev    next >
Encoding:
Makefile  |  1994-12-05  |  2.8 KB  |  116 lines

  1. ###
  2. ###  MemPools:    malloc() replacement using standard Amiga pool functions.
  3. ###  Copyright    (C)  1994    Jochen Wiedmann
  4. ###
  5. ###  This program is free software; you can redistribute it and/or modify
  6. ###  it under the terms of the GNU General Public License as published by
  7. ###  the Free Software Foundation; either version 2 of the License, or
  8. ###  (at your option) any later version.
  9. ###
  10. ###  This program is distributed in the hope that it will be useful,
  11. ###  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ###  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ###  GNU General Public License for more details.
  14. ###
  15. ###  You should have received a copy of the GNU General Public License
  16. ###  along with this program; if not, write to the Free Software
  17. ###  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18. ###
  19. ###
  20. ###  This is the Makefile for gmake.
  21. ###
  22. ###
  23. ###  Computer:    Amiga 1200
  24. ###
  25. ###  Compilers: Dice 3.01
  26. ###        SAS/C 6.3
  27. ###        gcc 2.6.1
  28. ###
  29. ###
  30. ###  Author:    Jochen Wiedmann
  31. ###        Am Eisteich 9
  32. ###      72555 Metzingen
  33. ###        Germany
  34. ###
  35. ###        Phone: (0049) 7123 14881
  36. ###        Internet: jochen.wiedmann@uni-tuebingen.de
  37. ###
  38.  
  39.  
  40. SRCS=calloc.c free.c init.c malloc.c realloc.c strdup.c \
  41.      MemPoolPuddleSize.c MemPoolThreshSize.c MemPoolFlags.c
  42.  
  43. OBJS=calloc.o free.o init.o malloc.o realloc.o strdup.o \
  44.      MemPoolPuddleSize.o MemPoolThreshSize.o MemPoolFlags.o
  45.  
  46. LIBS=mempoolss.lib mempoolssr.lib mempools.lib libmempools.a
  47.  
  48. CFLAGS=-pedantic -Wall
  49. CC=gcc
  50.  
  51. ############################################################################
  52. ###
  53. ###  Targets: all clean dist check time
  54. ###
  55. ############################################################################
  56.  
  57. all: libmempools.a
  58.  
  59. dist:
  60.     dmake dist
  61.  
  62. mempoolss.lib:
  63.     dmake mempoolss.lib
  64.  
  65. mempoolssr.lib:
  66.     dmake mempoolssr.lib
  67.  
  68. mempools.lib:
  69.     rm -rf #?.o
  70.     smake mempools.lib
  71.  
  72. libmempools.a: $(OBJS)
  73.     ar r libmempools.a $(OBJS)
  74.     ranlib libmempools.a
  75.  
  76. clean:
  77.     rm -rf #?.o #?.lib lib#?.a dtmp:comp?
  78.  
  79. check: TimeMem
  80.     @avail flush
  81.     @TimeMem VERBOSE
  82.     @avail flush
  83.     @rm -f TimeMem TimeMem.o
  84.  
  85. time: TimeMem TimeMem.dice TimeMem.sas TimeMem.ixemul TimeMem.libnix TimeProg
  86.     @echo You'd better get a cup of coffee now ...
  87.     @echo
  88.     @echo Timing Dice functions:
  89.     @TimeProg "TimeMem.dice"
  90.     @echo Timing SAS/C functions
  91.     @TimeProg "TimeMem.sas"
  92.     @echo Timing ixemul functions
  93.     @TimeProg "TimeMem.ixemul"
  94.     @echo Timing libnix functions
  95.     @TimeProg "TimeMem.libnix"
  96.     @echo Timing MemPool functions
  97.     @TimeProg "TimeMem"
  98.  
  99. TimeMem: TimeMem.c
  100.     gcc -ansi -noixemul $(CFLAGS) -o TimeMem TimeMem.c -L. -lmempools
  101.  
  102. TimeMem.dice:
  103.     dmake TimeMem.dice
  104.  
  105. TimeMem.sas: TimeMem.c
  106.     smake TimeMem.sas
  107.  
  108. TimeMem.ixemul: TimeMem.c rand.c
  109.     gcc -ansi $(CFLAGS) -o TimeMem.ixemul TimeMem.c rand.c
  110.  
  111. TimeMem.libnix: TimeMem.c rand.c
  112.     gcc -ansi -noixemul $(CFLAGS) -o TimeMem.libnix TimeMem.c rand.c
  113.  
  114. TimeProg: TimeProg.c
  115.     gcc -ansi -noixemul $(CFLAGS)
  116.